+++ /dev/null
-#!/bin/sh
-set -e
-
-if [ ! -e /usr/local/lib/ocaml ]; then
- if mkdir /usr/local/lib/ocaml 2>/dev/null; then
- chown root:staff /usr/local/lib/ocaml
- chmod 2775 /usr/local/lib/ocaml
- fi
-fi
-if [ ! -e /usr/local/lib/ocaml/@OCamlABI@ ]; then
- if mkdir /usr/local/lib/ocaml/@OCamlABI@ 2>/dev/null; then
- chown root:staff /usr/local/lib/ocaml/@OCamlABI@
- chmod 2775 /usr/local/lib/ocaml/@OCamlABI@
- fi
-fi
-if [ ! -e /usr/local/lib/ocaml/@OCamlABI@/stublibs ]; then
- if mkdir /usr/local/lib/ocaml/@OCamlABI@/stublibs 2>/dev/null; then
- chown root:staff /usr/local/lib/ocaml/@OCamlABI@/stublibs
- chmod 2775 /usr/local/lib/ocaml/@OCamlABI@/stublibs
- fi
-fi
-
-#DEBHELPER#
+++ /dev/null
-#!/bin/sh
-set -e
-
-rmdir /usr/local/lib/ocaml/@OCamlABI@/stublibs 2>/dev/null || true
-rmdir /usr/local/lib/ocaml/@OCamlABI@ 2>/dev/null || true
-rmdir /usr/local/lib/ocaml 2>/dev/null || true
-
-#DEBHELPER#